APPEND.RUN_SILENT Function

Syntax

Code_Text as C = append.run_silent(C layoutname [,C transaction_table_filter [,* arguments ]])

Arguments

layoutnameCharacter

The name of a previously created append operation.

transaction_table_filterCharacter

Default = "". An additional character filter expression for the transaction table that selects records to append.Optional.

argumentsPointer

Default = null_value().

Returns

Code_TextCharacter

The Xbasic code that was run performing the operation.

Description

Runs an Append operation without displaying any prompts

Discussion

The APPEND.RUN_SILENT() method appends data using a previously defined append operation.

If you specify an optional filter argument, the filter is applied in addition to any filter that may have been defined as Part of the Operation. (You can check to see if a filter is defined as Part of an Operation by editing the saved operation, and selecting the "Select records" menu item.)

Example

The following example runs the Append Customer saved operation and displays a warning dialog box.

append.run_silent("Append Customer", "Lastname < 'Z'")

Limitations

Desktop applications only.

See Also